time.Time.nsec (method)

18 uses

	time (current package)
		time.go#L163: func (t *Time) nsec() int32 {
		time.go#L254: 	return ts > us || ts == us && t.nsec() > u.nsec()
		time.go#L264: 	return ts < us || ts == us && t.nsec() < u.nsec()
		time.go#L276: 	return t.sec() == u.sec() && t.nsec() == u.nsec()
		time.go#L433: 	return t.sec() == 0 && t.nsec() == 0
		time.go#L576: 	return int(t.nsec())
		time.go#L821: 	nsec := t.nsec() + int32(d%1e9)
		time.go#L860: 	d := Duration(t.sec()-u.sec())*Second + Duration(t.nsec()-u.nsec())
		time.go#L909: 	return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
		time.go#L1143: 	return t.unixSec()*1e3 + int64(t.nsec())/1e6
		time.go#L1152: 	return t.unixSec()*1e6 + int64(t.nsec())/1e3
		time.go#L1162: 	return (t.unixSec())*1e9 + int64(t.nsec())
		time.go#L1193: 	nsec := t.nsec()
		time.go#L1497: 	nsec := t.nsec()